home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1993 July / InfoMagic USENET CD-ROM July 1993.ISO / sources / sun / volume1 / rntool < prev    next >
Encoding:
Internet Message Format  |  1989-07-20  |  17.0 KB

  1. Path: uunet!wyse!vsi1!apple!rutgers!aramis.rutgers.edu!dartagnan.rutgers.edu!mcgrew
  2. From: mcgrew@dartagnan.rutgers.edu (Charles Mcgrew)
  3. Newsgroups: comp.sources.sun
  4. Subject: v01i055:  Rntool - another tooltool newsreader
  5. Message-ID: <Jul.20.17.17.43.1989.17210@dartagnan.rutgers.edu>
  6. Date: 20 Jul 89 21:17:45 GMT
  7. Organization: Rutgers Univ., New Brunswick, N.J.
  8. Lines: 515
  9. Approved: mcgrew@aramis.rutgers.edu
  10.  
  11. Submitted-by: bowen%prg.oxford.ac.uk@nfsnet-relay.ac.uk
  12. Posting-number: Volume 1, Issue 55
  13. Archive-name: rntool
  14.  
  15.  
  16.               Copyright (C) 1989 University of Oxford
  17. Permission to copy without fee all or part of this material is granted
  18. provided that the copies are not made or distributed for direct
  19. commercial advantage, the University of Oxford copyright notice and the
  20. title and its date appear, and notice is given that copying is by
  21. permission of the University of Oxford or the original contributor.
  22.  
  23. #! /bin/sh
  24. # This is a shell archive, meaning:
  25. # 1. Remove everything above the #! /bin/sh line.
  26. # 2. Save the resulting text in a file.
  27. # 3. Execute the file with /bin/sh (not csh) to create the files:
  28. #    README
  29. #    Makefile
  30. #    rntool
  31. #    rntool.1
  32. #    rn.sh
  33. #    rn.tt
  34. #    news.icon
  35. #    nonews.icon
  36. # This archive created: Mon Apr 17 16:21:23 1989
  37. # By:    Jonathan "news" Bowen (Programming Research Group, Oxford University, UK)
  38. export PATH; PATH=/bin:$PATH
  39. echo shar: extracting "'README'" '(1734 characters)'
  40. if test -f 'README'
  41. then
  42.     echo shar: will not over-write existing file "'README'"
  43. else
  44. sed 's/^    X//' << \SHAR_EOF > 'README'
  45.     XThese files relate to the ``rntool'' command which allows news to be
  46.     Xread within a SunView window using ``tooltool'' and ``rn''.  The
  47.     Xsoftware has only been tested on a Sun 3/50.  The files include:
  48.     X
  49.     X    Makefile    - makefile to install files *
  50.     X    README        - this file *
  51.     X    news.icon    - icon displayed when new news is present
  52.     X    nonews.icon    - icon display when there is no new news
  53.     X    rn.sh        - main news reading "csh" shell script *
  54.     X    rn.tt        - tooltool application description file *
  55.     X    rntool        - start-up shell script *
  56.     X    rntool.1    - manual page for tool *
  57.     X
  58.     X"rntool" is normally invoked by a user (e.g. in $HOME/.suntools or
  59.     X$HOME/.rootmenu) and this in turn invokes "tooltool".
  60.     X
  61.     X* Note that some files are currently put under "/usr/news".  This may
  62.     Xwell need to be changed depending on the local configuration. All the
  63.     Xfiles except the icon files should be scanned for this string and
  64.     Xedited appropriately before the files are installed (by running
  65.     X"make").
  66.     X
  67.     X"rn.sh" makes use of the "sunbell" program to sound the bell when news
  68.     Xarrived. If this is not available then "rn.sh" should be edited at this
  69.     Xpoint to edit out the call to "sunbell" and to sound the bell in some
  70.     Xother way if desired. An example is given as a comment in the shell
  71.     Xscript.
  72.     X
  73.     X
  74.     XWritten by
  75.     X    Jonathan Bowen
  76.     X    Oxford University Computing Laboratory,
  77.     X    Programming Research Group,
  78.     X    8-11 Keble Road,
  79.     X    Oxford OX1 3QD,
  80.     X    England.
  81.     X    Tel: +44-865-272574 (Sec: +44-865-273840)
  82.     X
  83.     XCopyright (C) 1988,1989  by J.P.Bowen
  84.     X
  85.     XPermission is granted to copy these files for
  86.     Xnon-profit purposes, provided this notice is left intact.
  87.     X
  88.     XPlease send corrections, improvements, etc. to:
  89.     X    JANET: bowen@uk.ac.oxford.prg
  90.     X    ARPA:  bowen%prg.oxford.ac.uk@nsfnet-relay.ac.uk
  91.     X    UUCP:  ...!uunet!mcvax!ukc!ox-prg!bowen
  92.     X
  93. SHAR_EOF
  94. if test 1734 -ne "`wc -c < 'README'`"
  95. then
  96.     echo shar: error transmitting "'README'" '(should have been 1734 characters)'
  97. fi
  98. fi # end of overwriting check
  99. echo shar: extracting "'Makefile'" '(358 characters)'
  100. if test -f 'Makefile'
  101. then
  102.     echo shar: will not over-write existing file "'Makefile'"
  103. else
  104. sed 's/^    X//' << \SHAR_EOF > 'Makefile'
  105.     XROOT=/usr/news
  106.     XBIN=/usr/local/bin
  107.     XMAN=/usr/man/man1
  108.     XIMAGES=$(ROOT)/images
  109.     XTOOLTOOL=$(ROOT)/tooltool
  110.     X
  111.     Xinstall:
  112.     X    chmod +x rntool rn.sh
  113.     X    cp rntool $(BIN)
  114.     X    cp rntool.1 $(MAN)
  115.     X    cp news.icon nonews.icon $(IMAGES)
  116.     X    cp rn.tt rn.sh $(TOOLTOOL)
  117.     X
  118.     Xshar:
  119.     X    shar -a README Makefile rntool rntool.1 rn.sh rn.tt \
  120.     X        news.icon nonews.icon > rntool.shar
  121.     X    compress rntool.shar
  122.     X
  123. SHAR_EOF
  124. if test 358 -ne "`wc -c < 'Makefile'`"
  125. then
  126.     echo shar: error transmitting "'Makefile'" '(should have been 358 characters)'
  127. fi
  128. fi # end of overwriting check
  129. echo shar: extracting "'rntool'" '(401 characters)'
  130. if test -f 'rntool'
  131. then
  132.     echo shar: will not over-write existing file "'rntool'"
  133. else
  134. sed 's/^    X//' << \SHAR_EOF > 'rntool'
  135.     X#!/bin/sh
  136.     X#
  137.     X#    rntool - window-based news reader for "rn"
  138.     X#
  139.     X#    Written by Jonathan Bowen, October 1987
  140.     X#    Updated July 1988, February 1989
  141.     X#
  142.     X
  143.     XROOT=/usr/news                export ROOT
  144.     XPATH=/bin:/usr/ucb:/usr/bin:/usr/local/bin:$ROOT/bin:$PATH
  145.     X                    export PATH
  146.     XPROGNAME=`basename $0`            export PROGNAME
  147.     XNEWSPROG=`basename $PROGNAME tool`    export NEWSPROG
  148.     X
  149.     Xexec $ROOT/bin/tooltool -f $ROOT/tooltool/$NEWSPROG.tt -Wi $*
  150.     X
  151. SHAR_EOF
  152. if test 401 -ne "`wc -c < 'rntool'`"
  153. then
  154.     echo shar: error transmitting "'rntool'" '(should have been 401 characters)'
  155. fi
  156. chmod +x 'rntool'
  157. fi # end of overwriting check
  158. echo shar: extracting "'rntool.1'" '(2012 characters)'
  159. if test -f 'rntool.1'
  160. then
  161.     echo shar: will not over-write existing file "'rntool.1'"
  162. else
  163. sed 's/^    X//' << \SHAR_EOF > 'rntool.1'
  164.     X.TH RNTOOL 1L "6 February 1989" "" "LOCAL"
  165.     X.UC
  166.     X.ds RT /usr/news
  167.     X.SH NAME
  168.     Xrntool \- window-based interface for news
  169.     X.SH SYNOPSIS
  170.     X.B rntool 
  171.     X[
  172.     X.B \-i
  173.     X.I seconds
  174.     X] 
  175.     X.SH DESCRIPTION
  176.     X.I Rntool
  177.     Xis a window-based interface to the \fIrn\fP(1) program for reading news
  178.     Xin the SunView environment on a Sun workstation.  The window is
  179.     Xopened as a icon initially.  The icon indicates whether there is any
  180.     Xnews to be read.  Additionally, the bell is sounded when new news
  181.     Xarrives, and \fIrn\fP is automatically invoked.  The news may then be
  182.     Xread by opening the window and using \fIrn\fP in the normal way.  If
  183.     Xthere is no new news available, \fIrn\fP may still be invoked by
  184.     Xopening the window.  The window is automatically closed on exit from
  185.     X\fIrn\fP.
  186.     X.PP
  187.     XSome commands may be entered using a mouse-selectable menu at the top
  188.     Xof the window if desired.  Pressing the left mouse button invokes the
  189.     Xdefault action; pressing the right mouse button may display a sub-menu
  190.     Xfor further selection of actions.
  191.     X.PP
  192.     XThe \fB$NEWSPROG\fP environment variable may be used to specify
  193.     Xanother news reading program if desired. However the menu provided has
  194.     Xbeen specifically tailored for the default program, \fIrn\fP.
  195.     X.SH OPTIONS
  196.     XThe follow options are available:
  197.     X.TP 12
  198.     X.BI \-i " seconds"
  199.     XCheck for new news every \fIseconds\fP seconds.
  200.     XThe default is 600 (10 minutes).
  201.     X.TP 12
  202.     X.BI \-W .\|.\|.
  203.     XThe standard \fIsuntools\fP generic tool arguments may also be included
  204.     Xif desired.  See \fIsuntools\fP(1) for more information.
  205.     X.SH FILES
  206.     X.PD 0
  207.     X.TP 35
  208.     X\*(RT/images/news.icon
  209.     Xnews available icon
  210.     X.TP 35
  211.     X\*(RT/images/nonews.icon
  212.     Xno news available icon
  213.     X.TP 35
  214.     X\*(RT/tooltool/rn.tt
  215.     X\fItooltool\fP(1) description file
  216.     X.TP 35
  217.     X\*(RT/tooltool/rn.sh
  218.     Xapplication shell script
  219.     X.PD
  220.     X.SH "SEE ALSO"
  221.     Xmailtool(1),
  222.     Xnews(5),
  223.     Xnewstool(1L),
  224.     Xshelltool(1),
  225.     Xrn(1),
  226.     Xsunbell(1L),
  227.     Xtooltool(1)
  228.     X.SH AUTHOR
  229.     XJonathan Bowen, Oxford University
  230.     X.SH BUGS
  231.     XThis shell script and manual page may change without notice.
  232.     X.br
  233.     XPlease report problems to \fI<bowen@prg.oxford.ac.uk>\fP.
  234. SHAR_EOF
  235. if test 2012 -ne "`wc -c < 'rntool.1'`"
  236. then
  237.     echo shar: error transmitting "'rntool.1'" '(should have been 2012 characters)'
  238. fi
  239. fi # end of overwriting check
  240. echo shar: extracting "'rn.sh'" '(2099 characters)'
  241. if test -f 'rn.sh'
  242. then
  243.     echo shar: will not over-write existing file "'rn.sh'"
  244. else
  245. sed 's/^    X//' << \SHAR_EOF > 'rn.sh'
  246.     X#!/bin/csh -f
  247.     X#
  248.     X#    rn.sh - News reading program - check for news every so often,
  249.     X#        change icon etc. when news is present/absent.
  250.     X#
  251.     X#    Normally invoked by "tooltool -f rn.tt".
  252.     X#
  253.     X#    Written by Jonathan Bowen, July/August 1988
  254.     X#    Based on "newsreader", written by Jonathan Bowen, October 1987
  255.     X#    Based on a "newsread" shell script by Jeremy Jacob, 9 Oct 87
  256.     X#    Updated by Jonathan Bowen, February 1989
  257.     X#
  258.     X
  259.     Xonintr -
  260.     X
  261.     Xif (! ${?ROOT}) then
  262.     X  set ROOT=/usr/news
  263.     Xendif
  264.     X
  265.     Xset PATH=/bin:/usr/bin:/ucb/bin:/usr/local/bin:$ROOT/bin
  266.     X
  267.     Xif (! ${?PROGNAME}) then
  268.     X  set PROGNAME=`basename $0`
  269.     Xendif
  270.     X
  271.     X# Directory containing icons for this shell script
  272.     Xset ICONDIR=$ROOT/images
  273.     X
  274.     X# Interval in seconds between checks for news
  275.     Xset INTERVAL=600
  276.     X
  277.     X# BEL is the ASCII bell character (octal 007)
  278.     Xset BEL=`echo -n x | tr x '\007'`
  279.     X# ESC is the ASCII escape character (octal 033)
  280.     Xset ESC=`echo -n x | tr x '\033'`
  281.     X
  282.     X# "rn" is the default newsreading program unless NEWSPROG is set
  283.     Xif (! ${?NEWSPROG}) then
  284.     X  set NEWSPROG=rn
  285.     Xendif
  286.     X
  287.     Xecho -n "${ESC}]L${ESC}\"
  288.     X
  289.     Xwhile (1)
  290.     X
  291.     X  echo -n "${ESC}[2t"
  292.     X  set NEWNEWS=`rn -c`
  293.     X
  294.     X  if (! $#NEWNEWS) then
  295.     X    echo -n "${ESC}]I$ICONDIR/nonews.icon${ESC}\"
  296.     X    echo -n "${ESC}]l$PROGNAME - No news${ESC}\"
  297.     X
  298.     X# Check for new news
  299.     X    while (! $#NEWNEWS)
  300.     X      onintr read
  301.     X      sleep $INTERVAL
  302.     X      set NEWNEWS=`rn -c`
  303.     X      goto cont
  304.     X# Read news anyway
  305.     Xread:
  306.     X      onintr -
  307.     X      echo -n "${ESC}]l$PROGNAME - Reading news${ESC}\${ESC}[1t"
  308.     X      clear
  309.     X      $NEWSPROG
  310.     X      clear
  311.     X      echo -n "${ESC}[2t${ESC}]l$PROGNAME - No news${ESC}\"
  312.     Xcont:
  313.     X      onintr -
  314.     X    end
  315.     X
  316.     X# Enable "News" icon.
  317.     X    echo -n "${ESC}]I$ICONDIR/news.icon${ESC}\"
  318.     X# Sound bell  ("Read   all    a------bout   it!")
  319.     X    sunbell     200 50 200 50 100 50 400 50 100
  320.     X# Sound bell twice (use if "sunbell" is not available)
  321.     X#   echo -n "${BEL}" ; sleep 1; echo -n "${BEL}"
  322.     X# Sound bell and make icon visible  (Not safe if screen is locked)
  323.     X#   echo -n "${BEL}${ESC}[5t" ; echo -n "${BEL}"
  324.     X  endif
  325.     X
  326.     X# Read new news
  327.     X  echo -n "${ESC}]I$ICONDIR/news.icon${ESC}\"
  328.     X  echo -n "${ESC}]l$PROGNAME - News${ESC}\"
  329.     X  clear
  330.     X  $NEWSPROG
  331.     X  clear
  332.     X
  333.     Xend
  334.     X
  335. SHAR_EOF
  336. if test 2099 -ne "`wc -c < 'rn.sh'`"
  337. then
  338.     echo shar: error transmitting "'rn.sh'" '(should have been 2099 characters)'
  339. fi
  340. chmod +x 'rn.sh'
  341. fi # end of overwriting check
  342. echo shar: extracting "'rn.tt'" '(1916 characters)'
  343. if test -f 'rn.tt'
  344. then
  345.     echo shar: will not over-write existing file "'rn.tt'"
  346. else
  347. sed 's/^    X//' << \SHAR_EOF > 'rn.tt'
  348.     Xapplication "/usr/news/tooltool/rn.sh"
  349.     X   font "/usr/lib/fonts/fixedwidthfonts/screen.r.14"
  350.     X   size 36 by 80 characters
  351.     X   label "rntool"
  352.     X   icon "/usr/news/images/nonews.icon"
  353.     X   open "^C"
  354.     X   close "q"
  355.     Xgadgets
  356.     X   top
  357.     X   font "/usr/lib/fonts/fixedwidthfonts/screen.b.14"
  358.     X   ragged
  359.     X   button
  360.     X      normal    "Default"        " "
  361.     X      shift    "Back"            "^B"
  362.     X      control    "Refresh"        "^L"
  363.     X      meta    "Refresh and decrypt"    "X"
  364.     X   end_button
  365.     X   button
  366.     X      normal    "Help"            "h"
  367.     X   end_button
  368.     X   button
  369.     X      normal    "Quit"            "q"
  370.     X      shift    "Close"            CLOSE
  371.     X      control    "Exit"            EXIT
  372.     X   end_button
  373.     X   button
  374.     X      normal    "List"            "L"
  375.     X   end_button
  376.     X   button
  377.     X      normal    "Goto"            "g"
  378.     X      shift    "Goto specified subject"    "g^Subj.*:.*"
  379.     X      control    "Goto next subject in article"    "^G"
  380.     X      meta    "Search"        "/"
  381.     X   end_button
  382.     X   button
  383.     X      normal    "Next"            "N"
  384.     X      shift    "Next unread"        "n"
  385.     X      control    "Next unread with same subject"    "^N"
  386.     X      meta    "Next subject in article"    "^G"
  387.     X   end_button
  388.     X   button
  389.     X      normal    "Prev"            "P"
  390.     X      shift    "Previous unread"    "p"
  391.     X      control    "Previous unread with same subject"    "^P"
  392.     X      meta    "Previous displayed newsgroup"    "-"
  393.     X   end_button
  394.     X   button
  395.     X      normal    "Yes"            "y"
  396.     X   end_button
  397.     X   button
  398.     X      normal    "No"            "n"
  399.     X   end_button
  400.     X   button
  401.     X      normal    "Top"            "^R"
  402.     X      shift    "Decrypt"        "^X"
  403.     X      control    "Verbose"        "v"
  404.     X   end_button
  405.     X   button
  406.     X      normal    "Reply"            "r"
  407.     X      shift    "Reply, including article"    "R"
  408.     X   end_button
  409.     X   button
  410.     X      normal    "Followup"        "f"
  411.     X      shift    "Followup, including article"    "F"
  412.     X   end_button
  413.     X   menu "Others"
  414.     X      "Subjects"            "="
  415.     X      "Next subject"            "^G"
  416.     X      "Same subject"            "^N"
  417.     X      "Go to first article"        "1"
  418.     X      "Go to first unread article"    "^"
  419.     X      "Go to last article"        "$"
  420.     X      "Mark all articles read"        "c"
  421.     X      "Mark article as unread"        "m"
  422.     X      "Unsubscribe"            "u"
  423.     X      "Edit KILL file"            "^K"
  424.     X   end_menu
  425.     Xend_gadgets
  426. SHAR_EOF
  427. if test 1916 -ne "`wc -c < 'rn.tt'`"
  428. then
  429.     echo shar: error transmitting "'rn.tt'" '(should have been 1916 characters)'
  430. fi
  431. fi # end of overwriting check
  432. echo shar: extracting "'news.icon'" '(1933 characters)'
  433. if test -f 'news.icon'
  434. then
  435.     echo shar: will not over-write existing file "'news.icon'"
  436. else
  437. sed 's/^    X//' << \SHAR_EOF > 'news.icon'
  438.     X/* Format_version=1, Width=64, Height=64, Depth=1, Valid_bits_per_item=16
  439.     X */
  440.     X    0xFFFF,0xFFFF,0xFFFF,0xFFFF,0x8000,0x0000,0x0000,0x0001,
  441.     X    0x8000,0x0000,0x0000,0x0001,0x8003,0x9C00,0x0000,0x0001,
  442.     X    0x8001,0xC800,0x0000,0x0001,0x8001,0xC800,0x0000,0x0001,
  443.     X    0x8001,0x6870,0xC63E,0x0001,0x8001,0x68C8,0xC642,0x0001,
  444.     X    0x8001,0x398C,0xC660,0x0001,0x8001,0x39FC,0xD63C,0x0001,
  445.     X    0x8001,0x1980,0xD61E,0x0001,0x8001,0x1980,0xFE43,0x0001,
  446.     X    0x8001,0x08C4,0xEE61,0x0001,0x8003,0x8878,0xC65E,0x0001,
  447.     X    0x8000,0x0000,0x0000,0x0001,0x8000,0x0000,0x0000,0x0001,
  448.     X    0xFFFF,0xFFFF,0xFFFF,0xFFFF,0x8000,0x0000,0x0000,0x0001,
  449.     X    0x8000,0x0000,0x0000,0x0001,0x8000,0x0000,0x0000,0x0001,
  450.     X    0xBFFF,0xFD75,0xD346,0x0001,0xA000,0x0524,0x9B49,0x24A1,
  451.     X    0xA010,0x0500,0x0045,0x24D1,0xA040,0x057E,0xAD42,0x2491,
  452.     X    0xA48F,0x7D00,0x0049,0x2C91,0xA8EC,0xE55B,0xEB46,0x1491,
  453.     X    0xAAEA,0xE500,0x0040,0x0001,0xA0AA,0xCD75,0xDF5B,0xE7FD,
  454.     X    0xA8A8,0x8500,0x0040,0x0001,0xAFFF,0xF55F,0xFB57,0x7F7D,
  455.     X    0xA935,0x0500,0x0040,0x0001,0xBFFF,0xFD7E,0x775D,0xFBFD,
  456.     X    0x8000,0x0100,0x0040,0x0001,0xA828,0x0175,0xBD5E,0xFEED,
  457.     X    0xBB3B,0x5500,0x0040,0x0001,0xAB2B,0x756F,0xFF5F,0xBFDD,
  458.     X    0x8000,0x0100,0x0040,0x0001,0xBEFD,0xFD7F,0xCF5D,0xFB7D,
  459.     X    0x8000,0x0100,0x0040,0x0001,0xB7F7,0xFD7B,0xBF57,0xDDDD,
  460.     X    0x8000,0x0100,0x0040,0x0001,0xBBDF,0xDD3E,0xFB5F,0xBDED,
  461.     X    0x8000,0x0100,0x0040,0x0001,0xBF7F,0x7D7F,0x675F,0xFFFD,
  462.     X    0x8000,0x0100,0x0050,0x0005,0xBEE9,0xFD7B,0x9F50,0x3E05,
  463.     X    0x8000,0x0100,0x0050,0x7F05,0xBBDF,0xBD6F,0xEF50,0xFF85,
  464.     X    0x8000,0x0100,0x0051,0xC1C5,0xBFEF,0xFD7E,0xFF51,0x8045,
  465.     X    0x800C,0x4D00,0x0053,0x2165,0xB6ED,0x057B,0xF352,0x52A5,
  466.     X    0x8009,0x6500,0x0052,0x2125,0xBFEA,0x657C,0xFF52,0x0C25,
  467.     X    0x8008,0x8500,0x0052,0x0025,0xBDCF,0x257B,0xBF51,0x3E45,
  468.     X    0x8008,0x0500,0x0050,0x9C85,0xB7EB,0xF57F,0xCF50,0x4105,
  469.     X    0x800A,0x7500,0x0050,0xBE85,0xA7AB,0xB57E,0xEF51,0x0045,
  470.     X    0x800A,0xDD00,0x0052,0x0025,0xBCEF,0xFD6F,0xDF5F,0xFFFD,
  471.     X    0x8000,0x0000,0x0000,0x0001,0xFFFF,0xFFFF,0xFFFF,0xFFFF
  472. SHAR_EOF
  473. if test 1933 -ne "`wc -c < 'news.icon'`"
  474. then
  475.     echo shar: error transmitting "'news.icon'" '(should have been 1933 characters)'
  476. fi
  477. fi # end of overwriting check
  478. echo shar: extracting "'nonews.icon'" '(1933 characters)'
  479. if test -f 'nonews.icon'
  480. then
  481.     echo shar: will not over-write existing file "'nonews.icon'"
  482. else
  483. sed 's/^    X//' << \SHAR_EOF > 'nonews.icon'
  484.     X/* Format_version=1, Width=64, Height=64, Depth=1, Valid_bits_per_item=16
  485.     X */
  486.     X    0xFFFF,0xFFFF,0xFFFF,0xFFFF,0x8000,0x0000,0x0000,0x0001,
  487.     X    0x8000,0x0000,0x0000,0x0001,0x8E70,0x0079,0xC000,0x0001,
  488.     X    0x8720,0x001C,0x8000,0x0001,0x8720,0x001C,0x8000,0x0001,
  489.     X    0x85A0,0xC016,0x870C,0x63E1,0x85A1,0x2016,0x8C8C,0x6421,
  490.     X    0x84E3,0x3013,0x98CC,0x6601,0x84E3,0x3013,0x9FCD,0x63C1,
  491.     X    0x8463,0x3011,0x980D,0x61E1,0x8463,0x3011,0x980F,0xE431,
  492.     X    0x8421,0x2010,0x8C4E,0xE611,0x8E20,0xC078,0x878C,0x65E1,
  493.     X    0x8000,0x0000,0x0000,0x0001,0x8000,0x0000,0x0000,0x0001,
  494.     X    0xFFFF,0xFFFF,0xFFFF,0xFFFF,0x8000,0x0000,0x0000,0x0001,
  495.     X    0x8000,0x0000,0x0000,0x0001,0x8000,0x0000,0x0000,0x0001,
  496.     X    0xBFFF,0xFD75,0xD346,0x0001,0xA000,0x0524,0x9B49,0x24A1,
  497.     X    0xA000,0x0500,0x0045,0x24D1,0xA000,0x0500,0x0042,0x2491,
  498.     X    0xA000,0x0500,0x0049,0x2C91,0xA000,0x0500,0x0046,0x1491,
  499.     X    0xA000,0x0500,0x0040,0x0001,0xA000,0x0500,0x0040,0x0001,
  500.     X    0xA000,0x0500,0x0040,0x0001,0xA000,0x0500,0x0040,0x0001,
  501.     X    0xA000,0x0500,0x0040,0x0001,0xBFFF,0xFD00,0x0040,0x0001,
  502.     X    0x8000,0x0100,0x0040,0x0001,0xA828,0x0100,0x0040,0x0001,
  503.     X    0xBB3B,0x5500,0x0040,0x0001,0xAB2B,0x7500,0x0040,0x0001,
  504.     X    0x8000,0x0100,0x0040,0x0001,0x8000,0x0100,0x0040,0x0001,
  505.     X    0x8000,0x0100,0x0040,0x0001,0x8000,0x0100,0x0040,0x0001,
  506.     X    0x8000,0x0100,0x0040,0x0001,0x8000,0x0100,0x0040,0x0001,
  507.     X    0x8000,0x0100,0x0040,0x0001,0x8000,0x0100,0x005F,0xFFFD,
  508.     X    0x8000,0x0100,0x0050,0x0005,0x8000,0x0100,0x0050,0x0005,
  509.     X    0x8000,0x0100,0x0050,0x0005,0x8000,0x0100,0x0050,0x0005,
  510.     X    0x8000,0x0100,0x0050,0x0005,0x800F,0xFD00,0x0050,0x0005,
  511.     X    0x8008,0x0500,0x0050,0x0005,0x8008,0x0500,0x0050,0x0005,
  512.     X    0x8008,0x0500,0x0050,0x0005,0x8008,0x0500,0x0050,0x0005,
  513.     X    0x8008,0x0500,0x0050,0x0005,0x8008,0x0500,0x0050,0x0005,
  514.     X    0x8008,0x0500,0x0050,0x0005,0x8008,0x0500,0x0050,0x0005,
  515.     X    0x8008,0x0500,0x0050,0x0005,0x8008,0x0500,0x0050,0x0005,
  516.     X    0x8008,0x0500,0x0050,0x0005,0x800F,0xFD00,0x005F,0xFFFD,
  517.     X    0x8000,0x0000,0x0000,0x0001,0xFFFF,0xFFFF,0xFFFF,0xFFFF
  518. SHAR_EOF
  519. if test 1933 -ne "`wc -c < 'nonews.icon'`"
  520. then
  521.     echo shar: error transmitting "'nonews.icon'" '(should have been 1933 characters)'
  522. fi
  523. fi # end of overwriting check
  524. #    End of shell archive
  525. exit 0
  526.